*
*::before,
*::after{
    box-sizing: border-box;
    margin: 0%;
    padding: 0;
    list-style: none;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* NAVIGATION BAR */

header {
    background-color: var(--color-white);
  }
  .nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #D99E9E;
    padding: 1px;  
    border: 1px solid #681D1D;
  }

  .logo img {
    margin-left: 10px;
    display: flex;
    width: 80px;
    height: 80px;
  }
  
  .navbar-links {
    margin-top: 0px;
    padding: 0;
    display: flex;
    position: absolute;
    margin-left: 250px;
  }
  .navbar-links a {
    display: block;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    line-height: 5px;
    padding: 0px;
    background-color: #D99E9E;
    border: 20px solid #D99E9E;
    border-radius: 5px;
  }
  .navbar-links ul a:hover{
    color: #681D1D;
  }


/* Bordered form */
form {
    border: 3px solid #f1f1f1;
  }
  
  /* Full-width inputs */
  input[type=text], input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }
  
  /* Set a style for all buttons */
  button {
    background-color: #681D1D;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 20%;
  }
  
  /* Add a hover effect for buttons */
  button:hover {
    opacity: 0.8;
  }
  
  /* Extra style for the cancel button */
  .cancelbtn {
    width: auto;
    padding: 10px 18px;
    background-color: #681D1D;
  }
  

  /* Add padding to containers */
  .container {
    padding: 5px;
  }
  
  /* The "Forgot password" text */
  span.psw {
    padding-top: 5px;
  }
  
  /* Change styles for span and cancel button on extra small screens */
  @media screen and (max-width: 300px) {
    span.psw {
      display: block;
      float: none;
    }
    .cancelbtn {
      width: 100%;
    }
  }

 /*Footer */
footer {
  background-color: #681D1D;
  padding: 35px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  color: #fff;

}

.footer-column {
  flex: 1;
}

h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

p {
  font-size: 14px;
  line-height: 1.5;
}

.social-media-icons {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-media-icons li {
  display: inline-block;
  margin-right: 10px;
}

.social-media-icons a {
  color: #fff;
  font-size: 25px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 35px;
  color: #fff;
}
a{
  text-decoration: none;
  color:white
}

/* Style the form element with a border around it */
form {
border: 4px solid #D99E9E;
}

/* Add some padding and a grey background color to containers */
.container {
padding: 20px;
background-color: #D99E9E;
}

/* Style the input elements and the submit button */
input[type=text], input[type=submit] {
width: 100%;
padding: 12px;
margin: 8px 0;
display: inline-block;
border: 1px solid #681D1D;
box-sizing: border-box;
}

/* Add margins to the checkbox */
input[type=checkbox] {
margin-top: 16px;
}

/* Style the submit button */
input[type=submit] {
background-color: #681D1D;
color: #D99E9E;
border: none;
}

input[type=submit]:hover {
opacity: 0.8;
}